@charset"utf-8";

/**

 * Zhang Jian reset css

 * 2017-now

 */
 * {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
 article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
    display: block;
}
ol, ul, li {
    list-style: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
img {
    display: block;
}
/* custom */
 a {
    color: #666;
    text-decoration: none;
    -webkit-backface-visibility: hidden;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -ms-transition:all 0.3s ease 0s;
    -o-transition:all 0.3s ease 0s;
    transition:all 0.3s ease 0s;
}
a:hover {
    text-decoration: none;
    color:#ec1418;
}
::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}
::-webkit-scrollbar-track-piece {
    background-color: rgba(0, 0, 0, 0.2);
    -webkit-border-radius: 6px;
}
::-webkit-scrollbar-thumb:vertical {
    height: 5px;
    background-color: rgba(125, 125, 125, 0.7);
    -webkit-border-radius: 6px;
}
::-webkit-scrollbar-thumb:horizontal {
    width: 5px;
    background-color: rgba(125, 125, 125, 0.7);
    -webkit-border-radius: 6px;
}
html, body {
    width: 100%;
    font-family:Microsoft YaHei, 微软雅黑, STHeitiSC-Light, simsun, 宋体, WenQuanYi Zen Hei, WenQuanYi Micro Hei, "sans-serif";
    color: #666;
    transition:all .3s;
}
body {
    line-height: 1.7;
    -webkit-text-size-adjust: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    font-size: 12px;
}
img {
    max-width: 100%;
}


:root{
    --color-fixedright:#19293c;
    --theme-color:#1c5594;
    --secondary-color:#fbaf11;
}

/*浮动*/
 .left {
    float: left;
}
.right {
    float: right;
}
/*弹性布局*/
 .flex {
    display: flex;
}
.flex_wrap {
    flex-wrap: wrap;
}
/*定位*/
 .pr {
    position: relative;
}
.pa {
    position: absolute;
}
/*清除浮动*/
 .clearfix:after {
    content:".";
    display:block;
    height:0;
    clear:both;
    visibility:hidden;
}
/*页面宽度*/
 .wrapper {
    margin:0 auto;
}
.wrapper {
    width:1200px;
}
@media screen and (min-width: 1441px) {
}
/*@media screen and (max-width: 1440px) {*/

/*    .wrapper{*/

/*        width:1200px;*/

/*    }*/

/*}*/

/*隐藏*/
 .dn {
    display: none;
}
/*按钮*/
 .more_style1 {
    margin-top: 50px;
    display: inline-block;
    padding: 10px 80px;
    border:1px solid #284983;
    position: relative;
    font-size: 18px;
    font-family: Arial;
    color:#284983;
    text-transform: uppercase;
    text-align: center;
    background: transparent;
}
.more_style1 div {
    transition: transform .3s, opacity .3s;
}
.more_style1 .dubbed {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translate3d(0, 20%, 0);
    pointer-events: none;
}
.more_style1:hover {
    color:#fff;
    background-color:transparent;
    border-color:rgba(255, 255, 255, 0.3);
    background: #284983;
}
.more_style1:hover .original {
    opacity: 0;
    transform: translate3d(0, -50%, 0);
}
.more_style1:hover .dubbed {
    opacity: 1;
    transform: none;
}
.more_style2 {
    color:#0053b1;
    border-color: #0053b1;
}
.more_style2:hover {
    background: #0053b1;
    color:#fff;
}
.button_wrap {
    margin-top: 40px;
}
.button_wrap .button {
    padding: 13px 49px;
    color:#fff;
    background-color:transparent;
    border-color:#124c96;
    font-size: 16px;
    border-radius: 0;
    display: inline-block;
    position: relative;
    white-space: nowrap;
    letter-spacing: .9px;
    overflow: hidden;
    text-overflow: ellipsis;
    border-style: solid;
    border-width: 2px;
    font-weight: bold;
    text-align: center;
    text-transform: uppercase;
    cursor: pointer;
    vertical-align: middle;
    user-select: none;
    transition: 0.5s;
    z-index: 1;
    font-style: normal;
}
.button_wrap .button:before {
    content:'';
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    background-color: #124c96;
}
.button_wrap .button:after {
    content:'';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 0 0;
    border-color:#0f65d3 transparent transparent transparent;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    z-index: -1;
}
.button_wrap .button:hover {
    color:#fff;
    background-color:transparent;
    border-color:#0f65d3;
}
.button_wrap .button:hover:after {
    border-width: 400px 400px 0 0;
}
@media screen and (max-width: 992px) {
    .button_wrap .button {
        padding: 6px 20px;
    }
}
/*鼠标经过图片放大*/
 .img_scale .img {
    overflow: hidden;
}
.img_scale .img img {
    transition: all .5s;
}
.img_scale:hover .img img {
    transform: scale(1.05);
}
.ptb30 {
    padding:30px 0;
}
.mtb40 {
    margin:40px 0;
}
.mt40 {
    margin-top:40px;
}
.pt80mpt30 {
    padding-bottom: 80px;
    overflow: hidden;
}
.mtpc100mo40 {
    padding-top:100px;
}
.mtpc90mo35 {
    margin-top:90px;
}
.ptbpc80m30 {
    padding:80px 0;
}
@media screen and (max-width: 992px) {
    .mtpc100mo40 {
        margin-top:35px;
    }
    .mtpc90mo35 {
        margin-top: 35px;
    }
    .pt80mpt30 {
        padding-bottom:30px;
    }
    .mtpc100mo40 {
        padding-top:40px;
    }
    .ptbpc80m30{
        padding:30px 0;
    }
}